home *** CD-ROM | disk | FTP | other *** search
- this.onMouseUp = function()
- {
- startAnimate = true;
- };
- dp = 2;
- this.onEnterFrame = function()
- {
- if(startAnimate)
- {
- pos2 = int(pos / 6) + 1;
- this.rod._x += this.dx;
- count++;
- if(count == 8)
- {
- _root.startBall(_rotation,pos2);
- this.dx = 0;
- return undefined;
- }
- if(count > 16)
- {
- this.removeMovieClip();
- }
- }
- else
- {
- this._rotation = 57.29577951308232 * Math.atan2(_root._ymouse - _Y,_root._xmouse - _X);
- pos += dp;
- pos <= 60 ? null : (dp = -2);
- pos >= 1 ? null : (dp = 2);
- rod._x = -20 - pos;
- this.dx = pos / 8;
- }
- };
-